home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 May / CMCD0504.ISO / Software / Freeware / Programare / dspack / DSPACK231.exe / {app} / Demos / BCB6 / PlayWin / main.h < prev    next >
Encoding:
C/C++ Source or Header  |  2003-03-05  |  1.6 KB  |  46 lines

  1. //---------------------------------------------------------------------------
  2.  
  3. #ifndef mainH
  4. #define mainH
  5. //---------------------------------------------------------------------------
  6. #include <Classes.hpp>
  7. #include <Controls.hpp>
  8. #include <StdCtrls.hpp>
  9. #include <Forms.hpp>
  10. #include "DSPack.hpp"
  11. #include <ComCtrls.hpp>
  12. #include <Dialogs.hpp>
  13. #include <Menus.hpp>
  14. #include <ToolWin.hpp>
  15. #include <ImgList.hpp>
  16. //---------------------------------------------------------------------------
  17. class TMainForm : public TForm
  18. {
  19. __published:    // IDE-managed Components
  20.         TVideoWindow *VideoWindow;
  21.         TMainMenu *MainMenu;
  22.         TDSTrackBar *DSTrackBar1;
  23.         TFilterGraph *FilterGraph;
  24.         TOpenDialog *OpenDialog;
  25.         TMenuItem *MenuFile;
  26.         TMenuItem *MenuOpen;
  27.         TToolBar *ToolBar;
  28.         TToolButton *tbPlay;
  29.         TToolButton *tbPause;
  30.         TToolButton *tbStop;
  31.         TImageList *ImageList;
  32.         void __fastcall MenuOpenClick(TObject *Sender);
  33.         void __fastcall FormCloseQuery(TObject *Sender, bool &CanClose);
  34.         void __fastcall VideoWindowDblClick(TObject *Sender);
  35.         void __fastcall tbPlayClick(TObject *Sender);
  36.         void __fastcall tbPauseClick(TObject *Sender);
  37.         void __fastcall tbStopClick(TObject *Sender);
  38. private:    // User declarations
  39. public:        // User declarations
  40.         __fastcall TMainForm(TComponent* Owner);
  41. };
  42. //---------------------------------------------------------------------------
  43. extern PACKAGE TMainForm *MainForm;
  44. //---------------------------------------------------------------------------
  45. #endif
  46.